home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / source / graphicgems4.lha / GemsIV / graph_layout / graph.mak < prev    next >
Encoding:
Text File  |  1995-02-06  |  907 b   |  52 lines

  1. .AUTODEPEND
  2.  
  3. .PATH.obj = .
  4.  
  5. #        *Translator Definitions*
  6. CC = bcc -v -W -vi- -wpro -weas -wpre -n. -I$(INCLUDEPATH) -L$(LIBPATH)
  7. TASM = TASM
  8. TLIB = tlib
  9. TLINK = tlink
  10. LIBPATH = C:\BORLANDC\LIB
  11. INCLUDEPATH = C:\BORLANDC\INCLUDE
  12.  
  13.  
  14. #        *Implicit Rules*
  15. .cpp.obj:
  16.   $(CC) -c -DMSWINDOWS {$< }
  17.  
  18. #        *List Macros*
  19.  
  20. OBJS = fileio.obj layout.obj graph.obj mswindow.obj vector.obj
  21.  
  22. #        *Explicit Rules*
  23. graph: $(OBJS)
  24.   $(TLINK) /v/x/c/P-/Twe/L$(LIBPATH) @&&|
  25. c0ws.obj+
  26. fileio.obj+
  27. layout.obj+
  28. graph.obj+
  29. mswindow.obj+
  30. vector.obj
  31. graph
  32.         # no map file
  33. mathws.lib+
  34. import.lib+
  35. cws.lib
  36.  
  37. |
  38.   RC  .\graph.exe
  39.  
  40.  
  41. #        *Individual File Dependencies*
  42. mswindow.obj: mswindow.cpp 
  43.  
  44. fileio.obj: fileio.cpp mswindow.hxx vector.hxx defines.h graph.hxx fileio.hxx
  45.  
  46. graph.obj: graph.cpp mswindow.hxx vector.hxx defines.h graph.hxx
  47.  
  48. layout.obj: layout.cpp mswindow.hxx vector.hxx defines.h graph.hxx 
  49.  
  50. vector.obj: vector.cpp vector.hxx 
  51.  
  52.